home *** CD-ROM | disk | FTP | other *** search
/ Netware Super Library / Netware Super Library.iso / mis_cnvt / txt2db / txt2dbf.ch < prev    next >
Text File  |  1994-01-05  |  1KB  |  44 lines

  1. /***
  2.    TXT2DBF.CH  Copyright (c) BITwise Computer Services, 1992-1993
  3.  
  4.      - Request all modules you wish to include in your .EXE, be sure to
  5.        specify any required LIBs in TXT2DBF.LNK
  6. */
  7.  
  8. REQUEST alltrim
  9. REQUEST bin2i
  10. REQUEST bin2l
  11. REQUEST bin2w
  12. REQUEST isalpha
  13. REQUEST isdigit
  14. REQUEST islower
  15. REQUEST isupper
  16. REQUEST i2bin
  17. REQUEST left
  18. REQUEST l2bin
  19. REQUEST padl
  20. REQUEST padc
  21. REQUEST padr
  22. REQUEST rat
  23. REQUEST right
  24. REQUEST strtran
  25. REQUEST stuff
  26. REQUEST transform
  27.  
  28.  
  29. // ASSIGN DEFAULT VALUES TO NIL PARAMETERS OR VARIABLES
  30. #command DEFAULT <p> TO <val> [,<pn> TO <valn>]  => ;
  31.                  <p>:=IF(<p> == NIL,<val>,<p>) ;
  32.                  [; <pn>:=IF(<pn> == NIL,<valn>,<pn>)]
  33.  
  34. // DOS REDIRECTABLE @ ... SAY
  35. #command @ <row>, <col> SAY <xpr>                                       ;
  36.                         [PICTURE <pic>]                                 ;
  37.                         [COLOR <color>]                                 ;
  38.                                                                         ;
  39.       => DevPos( <row>, <col> )                                         ;
  40.        ; OutStd(<xpr>)
  41.  
  42.  
  43. //EOF
  44.